home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / UNIXLIB37B / test / c / popentest2 < prev    next >
Text File  |  1992-02-10  |  170b  |  14 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. FILE *f;
  7.  
  8. if (!(f = popen("pipetest","w"))) { perror("popen()"); exit(1); }
  9.  
  10. fputs("Hello World\n",f);
  11.  
  12. pclose(f);
  13. }
  14.